home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GFX Sensations 1
/
Graphic Sensations - Volume 1.iso
/
tools
/
amiga
/
editors
/
cpaint.lha
/
Others_I_Wrote.lha
/
wint.e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-12-11
|
195 b
|
14 lines
/*prog to test windows*/
PROC main()
DEF w,x,y
FOR x:=0 TO 8
y:=4000+x
w:=OpenW(0,0,333,200,3,y,'test window',NIL,1,NIL)
WriteF('Opening window sflag #\d',x)
Delay(25)
CloseW(w)
ENDFOR
ENDPROC